home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
newrouts
/
addfunct.cls
next >
Wrap
Text File
|
1997-06-11
|
471b
|
19 lines
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "clsAddAFunction"
Attribute VB_Creatable = True
Attribute VB_Exposed = False
Sub AfterClick()
gIsFunction = True
frmOPXStand.Caption = "Add a Function"
frmOPXStand.cboRetType.Enabled = True
'Populate screen with default data
frmOPXStand.txtAuthor.Text = gAuthorName$
frmOPXStand.txtMaxLen.Text = Str$(gMaxLen%)
frmOPXStand.Show vbModal
End Sub